home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP 3.1 (Developer) [x86]
/
NeXT Step 3.1 Intel dev.cdr.dmg
/
NextDeveloper
/
Examples
/
AppKit
/
Draw
/
graphicsUndo.subproj
/
LineJoinGraphicsChange.m
< prev
next >
Wrap
Text File
|
1992-02-09
|
558b
|
32 lines
#import "drawundo.h"
@interface LineJoinGraphicsChange(PrivateMethods)
@end
@implementation LineJoinGraphicsChange
- initGraphicView:aGraphicView lineJoin:(int)aJoinValue
{
[super initGraphicView:aGraphicView];
joinValue = aJoinValue;
return self;
}
- (const char *)changeName
{
return NXLocalStringFromTable("Operations", "Line Join", NULL, "The operation of changing the roundedness at the joint between two lines.");
}
- (int)lineJoin
{
return joinValue;
}
- changeDetailClass
{
return [LineJoinChangeDetail class];
}
@end